github.com/andybalholm/brotli.ringBuffer.tail_size_ (field)

6 uses

	github.com/andybalholm/brotli (current package)
		ringbuffer.go#L21: 	tail_size_  uint32
		ringbuffer.go#L38: 	*(*uint32)(&rb.tail_size_) = 1 << uint(tail_bits)
		ringbuffer.go#L39: 	*(*uint32)(&rb.total_size_) = rb.size_ + rb.tail_size_
		ringbuffer.go#L71: 	if uint32(masked_pos) < rb.tail_size_ {
		ringbuffer.go#L74: 		copy(rb.buffer_[p:], bytes[:brotli_min_size_t(n, uint(rb.tail_size_-uint32(masked_pos)))])
		ringbuffer.go#L80: 	if rb.pos_ == 0 && uint32(n) < rb.tail_size_ {